home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (c) 1990-1993 Michael A. Cooper.
- * This software may be freely distributed provided it is not sold for
- * profit and the author is credited appropriately.
- */
-
- /*
- * $Id: config-data.h,v 6.1 1993/03/25 19:02:08 mcooper Exp mcooper $
- */
-
- #ifndef __config_data_h__
- #define __config_data_h__
-
- /*
- * Configuration data
- */
-
- /*
- * Types for ARG_TYPE
- */
- #define ARG_VARARGS 1
- #define ARG_STDARGS 2
-
- /*
- * Types of regular expression functions
- */
- #define RE_SYSV 1
- #define RE_BSD 2
- #define RE_REGCOMP 3
-
- /*
- * Types of TTY interfaces
- */
- #define TTY_POSIX 1
- #define TTY_BSD 2
- #define TTY_SYSV 3
-
- /*
- * Signal types
- */
- #define SIGTYPE_POSIX 1
- #define SIGTYPE_UNIX 2
-
- #endif /* __config_data_h__ */
-